home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / win2 / wr21.zip / WORD.FOR < prev    next >
Text File  |  1992-10-23  |  3KB  |  114 lines

  1. /* Formats suitable for use "naked" with Word for Windows */
  2. /* Si Dobson, 14-9-1992 */
  3.  
  4. description "Word for Windows (sequence numbers)"
  5.  
  6. /* use RTF to communicate with Word */
  7. language { RTF }
  8.  
  9. /* tags are complicated... */
  10. tag { "["
  11.       "{\field{\*\fldinst ref "
  12.       MajorAuthor(Surname) Date(Century) Unique
  13.       "}{\fldrslt 1}}"
  14.       "]" }
  15.  
  16. /* paper from journal */
  17. format { Title Authors Journal [ Vol No ] Date [ Pages ] [ Others ] }
  18. as { "["
  19.      "{\field{\*\fldinst set "
  20.      MajorAuthor(Surname) Date(Century) Unique
  21.      " {\field{\*\fldinst seq Reference}{\fldrslt 1}}}{\fldrslt 1}}{\field{\*\fldinst ref "
  22.      MajorAuthor(Surname) Date(Century) Unique
  23.      "}{\fldrslt 1}}"
  24.      "]" Tab
  25.      Authors
  26.      ", " 66 italic { Title "," } 99
  27.      " " Journal [ " " Vol [ "(" bold { No } ")" ] ] " (" Date ")" [ " pp." Pages ]
  28.      "."
  29.      [ "  " Others "." ]
  30.      Para }
  31.  
  32. /* paper in book */
  33. format { Title Authors Book [ Editors ] [ Publisher [ City ] ] [ Date] [ Pages ] [ Others ] }
  34. as { "["
  35.      "{\field{\*\fldinst set "
  36.      MajorAuthor(Surname) Date(Century) Unique
  37.      " {\field{\*\fldinst seq Reference}{\fldrslt 1}}}{\fldrslt 1}}{\field{\*\fldinst ref "
  38.      MajorAuthor(Surname) Date(Century) Unique
  39.      "}{\fldrslt 1}}"
  40.      "]" Tab
  41.      Authors
  42.      ", " 66 italic { Title "," } 99
  43.      [ ", pp." Pages ]
  44.      " in " Book
  45.      [ ", ed. " Editors ]
  46.      [ ", " Publisher [ ", " City ] ] [ " (" Date ")" ]
  47.      "."
  48.      [ "  " Others "." ]
  49.      Para }
  50.  
  51. /* book */
  52. format { Title Authors Publisher [ City ] Date [ Others ] }
  53. as { "["
  54.      "{\field{\*\fldinst set "
  55.      MajorAuthor(Surname) Date(Century) Unique
  56.      " {\field{\*\fldinst seq Reference}{\fldrslt 1}}}{\fldrslt 1}}{\field{\*\fldinst ref "
  57.      MajorAuthor(Surname) Date(Century) Unique
  58.      "}{\fldrslt 1}}"
  59.      "]" Tab
  60.      Authors
  61.      ", " 66 italic { Title "," } 99
  62.      " " Publisher [ ", " City ] [ " (" Date ")" ]
  63.      "."
  64.      [ "  " Others "." ]
  65.      Para }
  66.  
  67. /* technical report */
  68. format { Title Authors Publisher [ City ReportNo ] Date [ Others ] }
  69. as { "["
  70.      "{\field{\*\fldinst set "
  71.      MajorAuthor(Surname) Date(Century) Unique
  72.      " {\field{\*\fldinst seq Reference}{\fldrslt 1}}}{\fldrslt 1}}{\field{\*\fldinst ref "
  73.      MajorAuthor(Surname) Date(Century) Unique
  74.      "}{\fldrslt 1}}"
  75.      "]" Tab
  76.      Authors
  77.      ", " 66 italic { Title "," } 99 " "
  78.      [ ReportNo ", " ]
  79.      Publisher [ ", " City ] " (" Date ")"
  80.      "."
  81.      [ "  " Others "." ]
  82.      Para }
  83.  
  84. /* commercial technical document */
  85. format { Title Publisher [ City ] Date [ Others ] }
  86. as { "["
  87.      "{\field{\*\fldinst set "
  88.      MajorAuthor(Surname) Date(Century) Unique
  89.      " {\field{\*\fldinst seq Reference}{\fldrslt 1}}}{\fldrslt 1}}{\field{\*\fldinst ref "
  90.      MajorAuthor(Surname) Date(Century) Unique
  91.      "}{\fldrslt 1}}"
  92.      "]" Tab
  93.      Publisher
  94.      ", " 66 italic { Title "," } 99 " "
  95.      [ City ", " ]
  96.      "(" Date ")"
  97.      "."
  98.      [ "  " Others "." ]
  99.      Para }
  100.  
  101.  
  102. /* anything else */
  103. format { Author Date [ Others ] }
  104. as { "["
  105.      "{\field{\*\fldinst set "
  106.      MajorAuthor(Surname) Date(Century) Unique
  107.      " {\field{\*\fldinst seq Reference}{\fldrslt 1}}}{\fldrslt 1}}{\field{\*\fldinst ref "
  108.      MajorAuthor(Surname) Date(Century) Unique
  109.      "}{\fldrslt 1}}"
  110.      "]" Tab
  111.      Authors " (" Date ")."
  112.      [ "  " Others "." ]
  113.      Para }
  114.